home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / p_man / cat3 / complib / clacrm.z / clacrm
Text File  |  1998-10-30  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. CCCCLLLLAAAACCCCRRRRMMMM((((3333FFFF))))                                                          CCCCLLLLAAAACCCCRRRRMMMM((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      CLACRM - perform a very simple matrix-matrix multiplication
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      SUBROUTINE CLACRM( M, N, A, LDA, B, LDB, C, LDC, RWORK )
  13.  
  14.          INTEGER        LDA, LDB, LDC, M, N
  15.  
  16.          REAL           B( LDB, * ), RWORK( * )
  17.  
  18.          COMPLEX        A( LDA, * ), C( LDC, * )
  19.  
  20. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  21.      CLACRM performs a very simple matrix-matrix multiplication:
  22.               C := A * B,
  23.      where A is M by N and complex; B is N by N and real;
  24.      C is M by N and complex.
  25.  
  26.  
  27. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  28.      M       (input) INTEGER
  29.              The number of rows of the matrix A and of the matrix C.  M >= 0.
  30.  
  31.      N       (input) INTEGER
  32.              The number of columns and rows of the matrix B and the number of
  33.              columns of the matrix C.  N >= 0.
  34.  
  35.      A       (input) COMPLEX array, dimension (LDA, N)
  36.              A contains the M by N matrix A.
  37.  
  38.      LDA     (input) INTEGER
  39.              The leading dimension of the array A. LDA >=max(1,M).
  40.  
  41.      B       (input) REAL array, dimension (LDB, N)
  42.              B contains the N by N matrix B.
  43.  
  44.      LDB     (input) INTEGER
  45.              The leading dimension of the array B. LDB >=max(1,N).
  46.  
  47.      C       (input) COMPLEX array, dimension (LDC, N)
  48.              C contains the M by N matrix C.
  49.  
  50.      LDC     (input) INTEGER
  51.              The leading dimension of the array C. LDC >=max(1,N).
  52.  
  53.      RWORK   (workspace) REAL array, dimension (2*M*N)
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.